home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 013 / wssi310.arc / WSSITIPS.310 < prev    next >
Text File  |  1986-12-29  |  6KB  |  133 lines

  1.  
  2.  
  3.  
  4.                                   WSSINDEX Tips
  5.                       Version 3.1 for WSSINDEX version 3.1
  6.  
  7.         If you have found any clever ways of using WSSINDEX, or any other 
  8.         programs  which  increase the program's utility for  you,  please 
  9.         report them to me and I will add them to the next version of this 
  10.         list.   Some  commonly asked questions are also answered in  this 
  11.         list.
  12.  
  13.         1. If  you  have a tape backup system which can "fool"  DOS  into 
  14.            thinking it is a disk drive,  you can probably process it with 
  15.            WSSINDEX.   For example, I found that I could read directories 
  16.            from  a  Tallgrass  tape unit if I loaded  the  Tallgrass  TMS 
  17.            program first.
  18.  
  19.         2. The core resident public domain utility CP2 can be used to cut 
  20.            a  line  from  the viewfile display for pasting into  the  new 
  21.            comment  field.   I do not guarantee compatibility  with  this 
  22.            program.  It  seems  to work on my system,  but I do not  have 
  23.            source code for it and cannot maintain it.
  24.  
  25.         3. If you want to print a diskette sized directory of information 
  26.            for  a single disk,  set your printer for compressed  printing 
  27.            and  configure WSSINDEX for page length and width to give a 5" 
  28.            by 5" page.   Print the database selecting only files from the 
  29.            desired disk.
  30.  
  31.         4. If you want to associate comments with subdirectories, you can 
  32.            put  a zero length file named !  in each  subdirectory.   This 
  33.            file will sort alphabetically before any other (legally named) 
  34.            file.   If your system objects to copying a zero length  file, 
  35.            try  the  shareware program FFM or other file  utilities.   My 
  36.            system will only copy such a file if it is one of at least two 
  37.            matching files in a wild card copy command.
  38.  
  39.         5. Once the in-core database has been sorted, it stays sorted the 
  40.            same  way until a disk is added or removed,  so you can  often 
  41.            specify sort option 0 to save time.  This is especially useful 
  42.            if  you enter an invalid selection option in a  print  request 
  43.            and get kicked back to the main menu after sorting.
  44.  
  45.         6. I  find  that  a large library of floppy disks  is  easier  to 
  46.            maintain  if I assign a unique serial number to each disk  and 
  47.            make  it the leading characters of the volume name.   Not only 
  48.            is it easier to look for a disk which has both a unique number 
  49.            and  a descriptive name,  but it is easy to jot down the  disk 
  50.            number  whenever  I  update a disk,  so I  have  a  reasonably 
  51.            complete list of disks which have been changed and need to  be 
  52.            re-entered into the database.
  53.  
  54.         7. The   predefined   category  strings  triggered   by   hitting 
  55.            Alt+letter  can be used just about anywhere a character string 
  56.            is required.  For example,  if you have several databases, you 
  57.            can put their names into category strings and use a simple Alt 
  58.            keystroke to enter their names when you want to read them  in.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.            Or  if you want to select files by category,  you can use  the 
  71.            same  keystroke  you used to enter the category in  the  first 
  72.            place.
  73.  
  74.         8. If you are a software "collector", you may eventually run into 
  75.            the 16K file limit,  or run out of memory, or just suffer from 
  76.            slow processing of large databases.  If you foresee any chance 
  77.            of  needing to use multiple databases in the future,  you  are 
  78.            better  off  setting them up at the start.   It is  simple  to 
  79.            merge two databases if you want to process everything at once, 
  80.            but  the  only  way  to split a database would  be  to  remove 
  81.            selected disks from the database one at a time.
  82.  
  83.         9. The  configuration files are not guaranteed to  be  compatible 
  84.            from version to version, although I try to make it possible to 
  85.            read  and  use most of the information in an  obsolete  format 
  86.            configuration  file.   You should get an error message if  you 
  87.            read an old, incompatible configuration file, but due to a bug 
  88.            in all 2.xx versions,  the message never appeared.  You should 
  89.            always  review the configuration when trying out a new release 
  90.            of WSSINDEX.
  91.  
  92.         10.With  the addition of the option to extract  information  from 
  93.            ARC  files,  you may want to re-index all disks which  include 
  94.            such  files.   Here's  a simple way to generate a list of  all 
  95.            disks which contain ARC files:
  96.              1. Configure  WSSINDEX to print only the  volume  name,  and 
  97.                 with  a  huge page length to suppress all but  the  first 
  98.                 title.
  99.              2. Print  your database to disk file ARCONLY.PRN,  sorted by 
  100.                 volume name, selecting filename *.ARC.
  101.              3. Run  the following BASIC program to strip off file  names 
  102.                 and  eliminate duplicate volume names (it will  terminate 
  103.                 with an error message when it hits the end of file).
  104.                   10 OLD$=""
  105.                   20 OPEN "I",#1,"ARCONLY.PRN"
  106.                   30 LINE INPUT #1,JUNK$ : LINE INPUT #1,JUNK$
  107.                   40 LINE INPUT #1,V$
  108.                   50 V$=MID$(V$,15)
  109.                   60 IF V$<>OLD$ THEN LPRINT V$ : OLD$=V$
  110.                   70 GOTO 40
  111.  
  112.         Robert W. Babcock
  113.         WSS Division of DDC
  114.         4 Reeves Road
  115.         Bedford, MA  01730
  116.         USA
  117.         617-275-1183
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.